/// Represents the type of axis in a graph or chart.
pub enum AxisType {
/// The horizontal axis, typically representing independent variables or categories.
AxisX,
/// The vertical axis, typically representing dependent variables or values.
AxisY,
}